home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / pickrep.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  970 b   |  29 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef pickrepH
  3. #define pickrepH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TPickRpt : public TForm
  12. {
  13. __published:    // IDE-managed Components
  14.     TButton *OKBtn;
  15.     TButton *CloseBtn;
  16.     TButton *ViewBtn;
  17.     TRadioGroup *ReportType;
  18.     void __fastcall OKBtnClick(TObject *Sender);
  19.     void __fastcall ViewBtnClick(TObject *Sender);
  20. private:    // User declarations
  21. public:        // User declarations
  22.     __fastcall TPickRpt(TComponent* Owner);
  23.     bool Preview;
  24. };
  25. //---------------------------------------------------------------------------
  26. extern TPickRpt *PickRpt;
  27. //---------------------------------------------------------------------------
  28. #endif
  29.